home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / rdir.zip / INTVID.H < prev    next >
Text File  |  1987-06-14  |  394b  |  32 lines

  1.  
  2. /* Special union for intvid */
  3.  
  4. typedef union u_vidreg
  5.    {
  6.    struct
  7.       {
  8.       unsigned ax;
  9.       unsigned bx;
  10.       unsigned cx;
  11.       unsigned dx;
  12.       } x;
  13.  
  14.    struct
  15.       {
  16.       unsigned char al, ah;
  17.       unsigned char bl, bh;
  18.       unsigned char cl, ch;
  19.       unsigned char dl, dh;
  20.       } h;
  21.    } t_vidreg;
  22.  
  23. void intvid (t_vidreg *, int);
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.